Use 'word-separator' message rather than harcoded space
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Tue, 24 Nov 2009 21:25:47 +0000 (21:25 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Tue, 24 Nov 2009 21:25:47 +0000 (21:25 +0000)
includes/Article.php

index 3fb548a..a8813e4 100644 (file)
@@ -2605,8 +2605,8 @@ class Article {
                        $skin = $wgUser->getSkin();
                        $revisions = $this->estimateRevisionCount();
                        $wgOut->addHTML( '<strong class="mw-delete-warning-revisions">' .
-                               wfMsgExt( 'historywarning', array( 'parseinline' ), $wgLang->formatNum( $revisions ) ) .' ' .
-                               $skin->historyLink() .
+                               wfMsgExt( 'historywarning', array( 'parseinline' ), $wgLang->formatNum( $revisions ) ) .
+                               wfMsgHtml( 'word-separator' ) . $skin->historyLink() .
                                '</strong>'
                        );
                        if( $bigHistory ) {